type github.com/jackc/pgx/v5.pipelineBatchResults

17 uses

	github.com/jackc/pgx/v5 (current package)
		batch.go#L279: type pipelineBatchResults struct {
		batch.go#L292: func (br *pipelineBatchResults) Exec() (pgconn.CommandTag, error) {
		batch.go#L335: func (br *pipelineBatchResults) Query() (Rows, error) {
		batch.go#L388: func (br *pipelineBatchResults) QueryRow() Row {
		batch.go#L395: func (br *pipelineBatchResults) Close() error {
		batch.go#L437: func (br *pipelineBatchResults) earlyError() error {
		batch.go#L441: func (br *pipelineBatchResults) nextQueryAndArgs() (query string, args []any, err error) {
		conn.go#L1073: func (c *Conn) sendBatchQueryExecModeCacheStatement(ctx context.Context, b *Batch) (pbr *pipelineBatchResults) {
		conn.go#L1075: 		return &pipelineBatchResults{ctx: ctx, conn: c, err: errDisabledStatementCache, closed: true}
		conn.go#L1105: func (c *Conn) sendBatchQueryExecModeCacheDescribe(ctx context.Context, b *Batch) (pbr *pipelineBatchResults) {
		conn.go#L1107: 		return &pipelineBatchResults{ctx: ctx, conn: c, err: errDisabledDescriptionCache, closed: true}
		conn.go#L1136: func (c *Conn) sendBatchQueryExecModeDescribeExec(ctx context.Context, b *Batch) (pbr *pipelineBatchResults) {
		conn.go#L1158: func (c *Conn) sendBatchExtendedWithDescription(ctx context.Context, b *Batch, distinctNewQueries []*pgconn.StatementDescription, sdCache stmtcache.Cache) (pbr *pipelineBatchResults) {
		conn.go#L1224: 			return &pipelineBatchResults{ctx: ctx, conn: c, err: err, closed: true}
		conn.go#L1233: 			return &pipelineBatchResults{ctx: ctx, conn: c, err: err, closed: true}
		conn.go#L1249: 		return &pipelineBatchResults{ctx: ctx, conn: c, err: err, closed: true}
		conn.go#L1252: 	return &pipelineBatchResults{